gusucode.com > MATLAB与控制系统仿真实践 源代码 > MATLAB与控制系统仿真实践 源代码/第五章/eg5_17.m

    clear;
x=0:1000;y=0:1000;
subplot(2,2,1);
plot(x,y);title('Plot');grid on;
subplot(2,2,2);
semilogx(x,y);title('Semilogx');grid on;
subplot(2,2,3);
semilogy(x,y);title('Semilogy');grid on;
subplot(2,2,4);
loglog(x,y);title('Loglog');grid on;